home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Environments / SmallEiffel 0.3.3 / SmallEiffel 68k / lib_test / test_array2a.e < prev    next >
Encoding:
Text File  |  1996-06-13  |  269 b   |  20 lines  |  [TEXT/EDIT]

  1. class TEST_ARRAY2A
  2. --
  3. -- From a bug report of Marc SCALZOLARO
  4. --
  5. creation make
  6.    
  7. feature 
  8.    
  9.    make is 
  10.       local
  11.      tab2: ARRAY2[INTEGER];
  12.      t2: ARRAY2[ANY];
  13.       do
  14.      !!tab2.array2(<< <<1,2,3>>, <<4,5,6>> >>);
  15.      tab2.transpose;
  16.       end;
  17.  
  18. end -- TEST_ARRAY2A
  19.  
  20.